/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.x                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      topoSetDict;
}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

actions
(
    // wall1     Adiabatic
    {
        name    wallad1;
        type    cellSet;
        action  new;
        source  boxToCell;  
        sourceInfo
        {
            box (0 0 0 )(1 0.3 0.3);
        }
    }
    {
        name    wallad1;
        type    cellZoneSet;    //Have a look into this
        action  new;
        source  setToCellZone;  //Have a look into this
        sourceInfo
        {
          set wallad1;
        }
    }
// wall  heated
    {
        name    wall;
        type    cellSet;
        action  new;
        source  boxToCell;  
        sourceInfo
        {
            box (1 0 0 )(2 0.3 0.3);
        }
    }
    {
        name    wall;
        type    cellZoneSet;    //Have a look into this
        action  new;
        source  setToCellZone;  //Have a look into this
        sourceInfo
        {
          set wall;
        }
    }

// wall2 Adibatic
    {
        name    wallad2;
        type    cellSet;
        action  new;
        source  boxToCell;  
        sourceInfo
        {
            box (2 0 0 )(3 0.3 0.3);
        }
    }
    {
        name    wallad2;
        type    cellZoneSet;    //Have a look into this
        action  new;
        source  setToCellZone;  //Have a look into this
        sourceInfo
        {
          set wallad2;
        }
    }

    // topAir
    {
        name    topAir;
        type    cellSet;
        action  new;
        source  boxToCell;
        sourceInfo
        {
            box (0 0.3 0 )(3 1 0.3);
        }
    }
    {
        name    topAir;
        type    cellZoneSet;
        action  new;
        source  setToCellZone;
        sourceInfo
        {
            set topAir;
        }
    }

   
    

);

// ************************************************************************* //
